#include <BustaNetMsgQNode.h>
Public Member Functions | |
BustaNetMsgQNode () | |
CONSTRUCTOR. | |
BustaNetMsgQNode (BustaNetInternalMsg *newMsg) | |
CONSTRUCTOR. | |
~BustaNetMsgQNode () | |
DESTRUCTOR. | |
BustaNetInternalMsg * | getMsg () |
Returns the message contained in the node. | |
BustaNetMsgQNode * | getNext () |
Returns a pointer to the next node. | |
void | setNext (BustaNetMsgQNode *newNextNode) |
Sets the next node after this node in the message queue. |
The class represents a node of the message queue. Each node contains an internal message.
|
CONSTRUCTOR. Creates an empty message node. |
|
CONSTRUCTOR. Creates a message node containing the message newMsg |
|
DESTRUCTOR. Deletes the node.
|
|
Returns the message contained in the node. Returns the message associated with the message node.
|
|
Returns a pointer to the next node. Returns a pointer to the next node in the message queue.
|
|
Sets the next node after this node in the message queue. Sets the next node after this node in the message queue.
|